home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #2 / Monster Media No. 2 (Monster Media)(1994).ISO / prog_c / tpchal_1.zip / CHALENGE < prev    next >
Text File  |  1994-05-28  |  625b  |  16 lines

  1. The object is to find a particular nine digit decimal number.  The number
  2. must consist of the nine digits (1,2,3...9).  Each (and every) digit is
  3. used once, and only once. The number must have the following properties...
  4.  
  5. The leftmost digit of the number must be evenly divisible by the number 1.
  6. (trivial)
  7.  
  8. The leftmost two digits of the number must be evenly divisible by the
  9. number 2.
  10.  
  11. The leftmost three digits of the number must be evenly divisible by the
  12. number 3, and so on.  The entire number must be evenly divisible by the
  13. number 9.
  14.  
  15. There is only one number which will satisfy the above conditions.
  16.